home *** CD-ROM | disk | FTP | other *** search
- ;OCL{{{}}}
- ;OCL{{{ comments
- ; jump to previous non-space character or text-line.
- ; fold-comments are ignored. folds are closed, when leaving them.
- ;OCL}}}
- @if-using not(ocl-file-pre-char)
- @use (ocl-file-pre-char)
- ;OCL{{{ libs
- @if-using not(ocl-file-mt-fold) @lib mt-fold @fi
- ;OCL}}}
- ;OCL{{{ previous-text-line
- ( deffun previous-text-line
- ( do
- ( case
- ( test-begin-fold ( close-fold ) )
- ( test-fold-line ( open-fold mtool-bot ) )
- esac
- previous-line
- )
- while and(not(test-text) not(test-top))
- )
- )
- ;OCL}}}
- ;OCL{{{ previous-text-character
- ( deffun previous-text-character
- ( if not(test-begin-line)
- ( backward-character )
- else
- ( previous-text-line
- end-of-line
- )
- fi
- )
- )
- ;OCL}}}
- @fi
-